home *** CD-ROM | disk | FTP | other *** search
/ Aminet 2 / Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso / Aminet / dev / lang / f2c_amiga1.lha / f2c-1993.04.28amiga / source-patches / patches-for-libF77 next >
Text File  |  1993-12-01  |  858b  |  35 lines

  1. diff -c ORIG-libF77/makefile libF77/makefile
  2. *** ORIG-libF77/makefile    Wed Apr 28 07:26:35 1993
  3. --- libF77/makefile    Wed Nov 17 17:50:22 1993
  4. ***************
  5. *** 1,13 ****
  6.   .SUFFIXES: .c .o
  7. ! CC = cc
  8.   SHELL = /bin/sh
  9. ! CFLAGS = -O
  10.   
  11.   # compile, then strip unnecessary symbols
  12.   .c.o:
  13.       $(CC) -c -DSkip_f2c_Undefs $(CFLAGS) $*.c
  14. !     ld -r -x -o $*.xxx $*.o
  15. !     mv $*.xxx $*.o
  16.   
  17.   MISC =    Version.o main.o s_rnge.o abort_.o getarg_.o iargc_.o getenv_.o\
  18.       signal_.o s_stop.o s_paus.o system_.o cabs.o\
  19. --- 1,15 ----
  20.   .SUFFIXES: .c .o
  21. ! CC = gcc
  22.   SHELL = /bin/sh
  23. ! CFLAGS = -O2
  24.   
  25.   # compile, then strip unnecessary symbols
  26.   .c.o:
  27.       $(CC) -c -DSkip_f2c_Undefs $(CFLAGS) $*.c
  28. ! #    ld -r -x -o $*.xxx $*.o
  29. ! #    mv $*.xxx $*.o
  30.   
  31.   MISC =    Version.o main.o s_rnge.o abort_.o getarg_.o iargc_.o getenv_.o\
  32.       signal_.o s_stop.o s_paus.o system_.o cabs.o\
  33.